@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@font-face {
	font-family: 'SF UI Display';
	src: url('fonts/SFUIDisplay-Medium.eot');
	src: local('SF UI Display Medium'), local('SFUIDisplay-Medium'),
		url('fonts/SFUIDisplay-Medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/SFUIDisplay-Medium.woff') format('woff'),
		url('fonts/SFUIDisplay-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
* {
	font-family: 'SF UI Display';
}
.screen {
	display: none;
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0rem;
	left: 0rem;
}
.job-info-box {
	width: 800rem;
	height: 430rem;
	margin: 0 auto;
	margin-top: 50vh;
    transform: translateY(-50%);
    padding: 15rem;
	border-radius: 30rem;
	box-shadow: 0rem 0rem 45rem rgba(0, 0, 0, 0.3);
	background: linear-gradient(to bottom right, #382c2c, #a20a42);

	box-shadow: 0rem 0rem 45rem rgba(0, 0, 0, 0.3);
}
	.job-info-image {
		display: inline-block;
		width: 300rem;
		height: 430rem;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.job-info-content-block {
		display: inline-block;
		vertical-align: top;
		width: 480rem;
		margin-left: 15rem;
	}
		.job-info-header {
			color: white;
			text-shadow: 0rem 0rem 10rem rgba(0, 0, 0, 0.2);
			font-size: 20rem;
			text-align: center;
		}

		.job-info-text {
			height: 265rem;
			overflow-y: auto;
			margin-top: 15rem;
			margin-bottom: 10rem;
			padding: 5rem;
			border: 10rem solid white;
			border-radius: 15rem;
			background-color: white;
		}

		.job-electric-game-box {
			margin-top: 50vh;
			transform: translateY(-50%);
			text-align: center;
		}
			.job-electric-game-box-header {
				font-size: 20px;
				margin-bottom: 10px;
				color: white;
				text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
			}
			.job-electric-game-box-clicker {
				display: inline-block;
				width: 80px;
				height: 80px;
				margin: 5px;
				background-color: #696969;
				animation: job-electric-clicker-anim 0.7s 3s linear both;
				border-radius: 20px;
				background-image: url(images/job-electric-fuse.png);
				background-size: 90%;
				background-position: center;
				background-repeat: no-repeat;
				transition: 0.2s;
			}
		
				@keyframes job-electric-clicker-anim {   
					100% { 
						transform: rotateX( 180deg ); 
						background-image: none; 
					}
				}
		
				.job-electric-game-box-clicker-active:hover {
					margin: 0px;
					width: 90px;
					height: 90px;
				}
		
				.job-electric-game-box-clicker-broken {
					background-image: url(images/job-electric-fuse-broken.png);
				}
		
				.job-electric-game-box .clicker-done {
		
					background-color: #88ff86;
				}
		
				.job-electric-game-box .clicker-wrong {
		
					background-color: #b75050;
				}
.job-miner-stone {
	display: inline-block;
	background-image: url(images/job-miner-stone.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 75px;
	height: 75px;
	margin: 5rem;
	position: relative;
	transition: 0.15s;
}























/* TRUCKER JOB */
.trucker {
	width: 100%;
	height: 100%;
}
.infoTruck1 {
	margin-top: 20%;
	margin-left: 5%;
	text-align: center;
	width: 45vh;
	height: 30vh;
	background-color: rgba(255,255,255,.3);
	border-radius: 8px 0px 0px 8px;
}
.infoTruck2 {
	margin-top: -18.4%;
	margin-left: 35%;
	text-align: center;
	width: 45vh;
	height: 30vh;
	background-color: rgba(0,255,0,.3);
}
.infoTruck3 {
	margin-top: -18.1%;
	margin-left: 65%;
	text-align: center;
	width: 45vh;
	height: 30vh;
	background-color: rgba(255,0,0,.3);
	border-radius: 0px 8px 8px 0px;
}
h1 {
	color: white;
	font-family: 'Lato', sans-serif;
}
h2 {
	font-family: 'Roboto', sans-serif;
	text-shadow: 2px 1px #000;
	font-size: 2.1vh;
	color: white;
}
p {
	font-family: 'Pacifico', cursive;
	text-shadow: 2px 1px #000;
	font-size: 2.1vh;
	color: white;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.btn:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}